home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Mouse Options.xpl < prev    next >
Text File  |  2001-08-28  |  2KB  |  58 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Hardware\Mouse\General Options"
  5. "NAME"="Button Options"
  6. "VERSION"="3.07"
  7. "OSVERSION"="10101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Move mouse pointer to default button"
  10. "TEXT 2"="Swap mouse buttons (left is context menu, right is click)"
  11. "DESCRIPTION 1"="If the first option is activated, the mouse pointer is automatically moved to the default button in dialogs (that is, the button with the black border)."
  12. "DESCRIPTION 2"="If the second option is activated, the mouse buttons are changed, so if it's activated, the left buttons becoms the right button and vica versa." 
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Thanks to Shelley Hebert <sdh7@ra.msstate.edu> for "this won't work in Windows 95"."
  17.  
  18.  
  19. sP="HKCU\Control Panel\Mouse\"
  20. v2="SnapToDefaultButton" 'String 
  21. v3="SwapMouseButtons" 'String
  22.  
  23.  
  24. Sub Plugin_Initialize 
  25.     i=RegReadValue(sp & v2)
  26.     if i=1 then SetUIElement 1,true
  27.  
  28.     i=RegReadValue(sp & v3)
  29.     if i=1 then SetUIElement 2,true
  30. End Sub
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  b=GetUIElement(1)
  37.  if b=true then
  38.     Call RegWriteValue(sp & v2,1,1)
  39.  else
  40.     Call RegWriteValue(sp & v2,0,1)
  41.  end if
  42.  
  43.  b=GetUIElement(2)
  44.  if b=true then
  45.     Call RegWriteValue(sp & v3,1,1)
  46.  else
  47.     Call RegWriteValue(sp & v3,0,1)
  48.  end if
  49.  
  50.  
  51. ' Call IndicateSettingChange()
  52.  Call Logoff()
  53. End Sub
  54.  
  55.  
  56. Sub Plugin_Terminate 
  57. End Sub
  58.